home *** CD-ROM | disk | FTP | other *** search
/ One Click 21 (Special) / OC021.iso / Juegos / King of Skeleton / King of Skeleton.swf / scripts / frame_3 / DoAction.as < prev   
Encoding:
Text File  |  2006-02-02  |  282 b   |  17 lines

  1. so = SharedObject.getLocal("savedData");
  2. if(so.data.ct == undefined)
  3. {
  4.    so.data.ct = -1;
  5.    so.flush();
  6. }
  7. sndOff = false;
  8. if(uid == undefined && so.data.uid != undefined)
  9. {
  10.    uid = so.data.uid;
  11. }
  12. else if(uid != undefined)
  13. {
  14.    so.data.uid = uid;
  15.    so.flush();
  16. }
  17.